Assignment¶

The assignment will require you to complete cells, create new ones, and move around some cells. You need to familiarize yourself with the Jupyter notebook interface. You can find a tutorial here.

MAKE SURE TO MAKE A COPY OF THIS ASSIGNMENT IN YOUR OWN REPOSITORY. (delete this line in your new copy :) )

[EXERCISE 1]¶

Juan Bautista Tassello¶

jbtassello@mail.austral.edu.ar¶

Captura de pantalla 2024-03-22 a la(s) 14.20.07.png Es una foto que le mande a un amigo mientras se descargaba "jupyter".


[EXERCISE 5]¶

In [14]:
a=3
b=7

suma¶

In [16]:
a+b
Out[16]:
10

resta¶

In [17]:
b-a
Out[17]:
4

multiplicacion¶

In [18]:
a*b
Out[18]:
21

division¶

In [19]:
b/a
Out[19]:
2.3333333333333335